projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c20369f
)
(compilation-error-regexp-alist): Add regexp for Perl -w.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 27 Apr 1997 21:54:54 +0000
(21:54 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 27 Apr 1997 21:54:54 +0000
(21:54 +0000)
lisp/progmodes/compile.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/compile.el
b/lisp/progmodes/compile.el
index 096932eb5f07779c1884597afd7d0ec47c2b0b9e..4a4a469a45e47b9c0ed24ad40796fbd6fbd85c7b 100644
(file)
--- a/
lisp/progmodes/compile.el
+++ b/
lisp/progmodes/compile.el
@@
-234,6
+234,10
@@
of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
;; Sun ada (VADS, Solaris):
;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
+
+ ;; Perl -w:
+ ;; syntax error at automake line 922, near "':'"
+ ("\n.* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2)
)
"Alist that specifies how to match errors in compiler output.
Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])